home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / encoders / Sparc.pm < prev   
Text File  |  2006-06-30  |  1KB  |  42 lines

  1.  
  2. #
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Encoder::Sparc;
  11. use strict;
  12. # use the base from the lib/Msf/Encoder dir
  13. # makes for easier standalone use...
  14. use base 'Msf::Encoder::_Sparc';
  15. use Pex::SPARC;
  16.  
  17. my $advanced = 
  18. {
  19.  
  20. };
  21.  
  22. my $info = {
  23.     'Name'    => 'Sparc DWord Xor Encoder',
  24.     'Version' => '$Revision: 1.14 $',
  25.     'Authors' => [ 'optyx <optyx [at] uberhax0r.net>' ],
  26.     'Arch'    => [ 'sparc' ],
  27.     'OS'      => [ ],
  28.     'Description'  =>  "optyx's 48 byte XOR decoder",
  29.     'Refs'    => [ ],
  30. };
  31.  
  32. sub new {
  33.     my $class = shift; 
  34.     return($class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_));
  35. }
  36.  
  37. # I'm a fun msf module stub, mostly just for info data, see
  38. # lib/Msf/Encoder/_Sparc.pm for the real dealz yall
  39.  
  40.  
  41. 1;
  42.